home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / remque.c,v < prev    next >
Text File  |  1992-11-21  |  2KB  |  94 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     92.11.21.18.27.05;  author mottsmth;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     92.11.21.18.23.37;  author mottsmth;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @Generic Queue Removal
  22. @
  23.  
  24.  
  25. 1.2
  26. log
  27. @Function return type was struct qelem,
  28. not int, due to missing semi-colon !!!
  29. @
  30. text
  31. @/* 
  32.  * remque.c --
  33.  *
  34.  *    Source code for the "remque" library procedure.
  35.  *
  36.  * Copyright 1988 Regents of the University of California
  37.  * Permission to use, copy, modify, and distribute this
  38.  * software and its documentation for any purpose and without
  39.  * fee is hereby granted, provided that the above copyright
  40.  * notice appear in all copies.  The University of California
  41.  * makes no representations about the suitability of this
  42.  * software for any purpose.  It is provided "as is" without
  43.  * express or implied warranty.
  44.  */
  45.  
  46. #ifndef lint
  47. static char rcsid[] = "$Header: /sprite/src/lib/c/etc/RCS/remque.c,v 1.1 92/11/21 18:23:37 mottsmth Exp Locker: mottsmth $ SPRITE (Berkeley)";
  48. #endif not lint
  49.  
  50. struct qelem {
  51.     struct qelem *q_forw;
  52.     struct qelem *q_back;
  53.     char q_data[4];
  54. };
  55.  
  56.  
  57. /*
  58.  *----------------------------------------------------------------------
  59.  *
  60.  * remque --
  61.  *
  62.  *    Remove an element from its queue.
  63.  *
  64.  * Results:
  65.  *    None.
  66.  *
  67.  * Side effects:
  68.  *    Elem is removed from the queue it used to be part of.
  69.  *
  70.  *----------------------------------------------------------------------
  71.  */
  72.  
  73. remque(elem)
  74.     register struct qelem *elem;
  75. {
  76.     elem->q_forw->q_back = elem->q_back;
  77.     elem->q_back->q_forw = elem->q_forw;
  78. }
  79. @
  80.  
  81.  
  82. 1.1
  83. log
  84. @Initial revision
  85. @
  86. text
  87. @d17 1
  88. a17 1
  89. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  90. d24 1
  91. a24 1
  92. }
  93. @
  94.